home *** CD-ROM | disk | FTP | other *** search
/ APDL Other Worlds / APDL Other Worlds Collection.iso / SF3000 / Extras / !SFskyedit / h / Main < prev    next >
Encoding:
Text File  |  2003-09-12  |  811 b   |  34 lines

  1. /*
  2.  *  SFskyedit - Star Fighter 3000 sky colours editor
  3.  *  Main application skeleton
  4.  *  Copyright (C) 2001  Chris Bazley
  5.  */
  6.  
  7. #ifndef SFSMain_h
  8. #define SFSMain_h
  9.  
  10. #include <stdbool.h>
  11. #include "kernel.h"
  12. #include "toolbox.h"
  13.  
  14. extern _kernel_oserror shared_err_block;
  15. extern int             palette[256];
  16. extern void           *transtable; /* flex anchor */
  17. extern int             x_eigen;
  18. extern int             y_eigen;
  19. extern int             x_windlimit;
  20. extern int             y_windlimit;
  21. extern int             scale_factors[4];
  22. extern ObjectId        pal256_sharedid;
  23. extern char            taskname[32];
  24. extern int             wimp_version;
  25. extern bool            format_warning;
  26. #ifdef INT_COLOUR_FIND
  27. extern bool            use_colour_trans;
  28. #endif
  29.  
  30. extern int main(int argc, char *argv[]);
  31.  
  32. #endif
  33.  
  34.